Stop using g_assert() in the css tests.
ui_file = g_file_get_path (file);
css_file = test_get_other_file (ui_file, ".css");
- g_assert (css_file != NULL);
+ g_assert_nonnull (css_file);
provider = gtk_css_provider_new ();
gtk_css_provider_load_from_path (provider, css_file);
if (window == NULL)
window = GTK_WIDGET (gtk_builder_get_object (builder, "window"));
- g_assert (window != NULL);
+ g_assert_nonnull (window);
output = NULL;
g_assert_nonnull (bytes);
g_assert_no_error (error);
if (test->mimetype == NULL)
- g_assert (mimetype == NULL);
+ g_assert_null (mimetype);
else
g_assert_cmpstr (mimetype, ==, test->mimetype);
builder = gtk_builder_new_from_file (ui_file);
window = GTK_WIDGET (gtk_builder_get_object (builder, "window1"));
- g_assert (window != NULL);
+ g_assert_nonnull (window);
output = NULL;
g_signal_connect (window, "map", G_CALLBACK (style_context_changed), &output);
ui_file = g_file_get_path (file);
css_file = test_get_other_file (ui_file, ".css");
- g_assert (css_file != NULL);
+ g_assert_nonnull (css_file);
provider = gtk_css_provider_new ();
gtk_css_provider_load_from_path (provider, css_file);
builder = gtk_builder_new_from_file (ui_file);
window = GTK_WIDGET (gtk_builder_get_object (builder, "window1"));
- g_assert (window != NULL);
+ g_assert_nonnull (window);
output = NULL;
g_signal_connect (window, "map", G_CALLBACK (style_context_changed), &output);
}
reference_file = test_get_other_file (ui_file, ".nodes");
- g_assert (reference_file != NULL);
+ g_assert_nonnull (reference_file);
diff = diff_with_file (reference_file, output, -1, &error);
g_assert_no_error (error);